summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2024-02-25 20:01:05 +0100
committerGitHub <noreply@github.com>2024-02-25 20:01:05 +0100
commit15831b19a3d5478d88cfec0cc52555df208dbd15 (patch)
tree96dcece1abea19d272ac7d729c2c3cf459ca4231
parentMerge pull request #13154 from german77/vibration-filter (diff)
parentcore: hid: hid_core doesn't have access to LIBUSB (diff)
downloadyuzu-15831b19a3d5478d88cfec0cc52555df208dbd15.tar
yuzu-15831b19a3d5478d88cfec0cc52555df208dbd15.tar.gz
yuzu-15831b19a3d5478d88cfec0cc52555df208dbd15.tar.bz2
yuzu-15831b19a3d5478d88cfec0cc52555df208dbd15.tar.lz
yuzu-15831b19a3d5478d88cfec0cc52555df208dbd15.tar.xz
yuzu-15831b19a3d5478d88cfec0cc52555df208dbd15.tar.zst
yuzu-15831b19a3d5478d88cfec0cc52555df208dbd15.zip
-rw-r--r--src/hid_core/frontend/emulated_controller.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/hid_core/frontend/emulated_controller.cpp b/src/hid_core/frontend/emulated_controller.cpp
index 7664341bd..9aa08d5cc 100644
--- a/src/hid_core/frontend/emulated_controller.cpp
+++ b/src/hid_core/frontend/emulated_controller.cpp
@@ -176,10 +176,9 @@ void EmulatedController::LoadDevices() {
if (npad_id_type == NpadIdType::Player1 || npad_id_type == NpadIdType::Handheld) {
camera_params[1] = Common::ParamPackage{"engine:camera,camera:1"};
nfc_params[0] = Common::ParamPackage{"engine:virtual_amiibo,nfc:1"};
-#ifdef HAVE_LIBUSB
+#ifndef ANDROID
ring_params[1] = Common::ParamPackage{"engine:joycon,axis_x:100,axis_y:101"};
-#endif
-#ifdef ANDROID
+#else
android_params = Common::ParamPackage{"engine:android,port:100"};
#endif
}